home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / utilit~1 / initbin.zoo / init-bin / etc / rc.boo < prev    next >
Encoding:
Text File  |  1992-11-03  |  184 b   |  12 lines

  1. #!/bin/sh
  2. # This is run by init
  3.  
  4. if [ -f /etc/fastboot ] ; then
  5.     echo "Fast boot.. Skipping disk checks."
  6.     /bin/rm /etc/fastboot
  7. else
  8.     if [ -f /etc/fsck ] ; then
  9.         /etc/fsck -q
  10.     fi
  11. fi
  12.